home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Atari Mega Archive 2
/
Atari Mega Archive CD - Volume 2.iso
/
minix
/
up1510b.tgz
/
up1510b
/
src
/
lib
/
posix
/
fcntl.c
< prev
next >
Wrap
C/C++ Source or Header
|
1990-07-21
|
261b
|
11 lines
#include <lib.h>
#include <fcntl.h> /* for the proto; emphasize varargs kludge */
PUBLIC int fcntl(fd, cmd, barf)
int fd;
int cmd;
int barf; /* varargs; fix it when open is fixed */
{
return(callm1(FS, FCNTL, fd, cmd, barf, NIL_PTR, NIL_PTR, NIL_PTR));
}